home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / lib / perl5 / autobox / universal.pm
Encoding:
Perl POD Document  |  2008-05-24  |  242 b   |  15 lines

  1. package # hide from PAUSE
  2.     autobox::universal;
  3.  
  4. use strict;
  5. use warnings;
  6.  
  7. use autobox (); # don't import()
  8.  
  9. use Exporter (); # perl 5.8.0 doesn't support "use Exporter qw(import)"
  10.  
  11. our @ISA = qw(Exporter);
  12. our @EXPORT_OK = qw(type); 
  13.  
  14. 1;
  15.